home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 October / EnigmA AMIGA RUN 01 (1995)(G.R. Edizioni)(IT)[!][issue 1995-10][Aminet 7].iso / Aminet / comm / mail / pine391base.lha / pine3.91 / lpr.c < prev    next >
C/C++ Source or Header  |  1995-04-05  |  220b  |  18 lines

  1. #include <stdio.h>
  2. /* lpr for amiga */
  3.  
  4. int main() {
  5.     FILE *out;
  6.     char ch;
  7.  
  8.     out = fopen("PRT:","w");
  9.  
  10.     while (!feof(stdin)) {
  11.     ch=fgetc(stdin);
  12.     fputc(ch,out);
  13.     }
  14.     fputc('\f',out);
  15.     fclose(out);
  16. }
  17.  
  18.